135fe35d41cf85e65cc4c62f07999bcc89b31bf3,examples/src/main/java/org/apache/ignite/examples/datagrid/store/hibernate/CacheHibernateStoreExample.java,CacheHibernateStoreExample,main,#String[]#,58

Before Change


                long start = System.currentTimeMillis();

                // Start loading cache from persistent store on all caching nodes.
                cache.loadCache(null, ENTRY_COUNT);

                long end = System.currentTimeMillis();

After Change


                // Make initial cache loading from persistent store. This is a
                // distributed operation and will call CacheStore.loadCache(...)
                // method on all nodes in topology.
                loadCache(cache);

                // Start transaction and execute several cache operations with
                // read/write-through to persistent store.